home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / ds5000.md / netDFMachInt.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  58 lines

  1. /*
  2.  * netDFMachInt.h --
  3.  *
  4.  *    Internal definitions for the ds5000-based FDDI controller
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/net/ds5000.md/netDFMachInt.h,v 1.1 92/06/03 22:48:26 voelker Exp $
  16.  */
  17.  
  18. #ifndef _NETDFMACHINT
  19. #define _NETDFMACHINT
  20.  
  21. #include <netInt.h>
  22. #include <mach.h>
  23.  
  24. #define NET_DF_MACH_OPTION_ROM_OFFSET        0x218000
  25.  
  26. /*
  27.  * Addresses for control registers as offsets from option slot address
  28.  * (page 5)
  29.  */
  30.  
  31. #define NET_DF_MACH_RESET_OFFSET             0x100200
  32. #define NET_DF_MACH_CTRLA_OFFSET             0x100500
  33. #define NET_DF_MACH_CTRLB_OFFSET             0x100502
  34. #define NET_DF_MACH_INT_EVENT_OFFSET         0x100400
  35. #define NET_DF_MACH_INT_MASK_OFFSET          0x100404
  36. #define NET_DF_MACH_STATUS_OFFSET            0x100402
  37.  
  38. #define NET_DF_MACH_COMMAND_RING_OFFSET      0x200400
  39. #define NET_DF_MACH_COMMAND_BUF_OFFSET       0x208000
  40. #define NET_DF_MACH_COMMAND_BUF_END_OFFSET   0x20FFFF
  41.  
  42. #define NET_DF_MACH_UNSOL_RING_OFFSET        0x200800
  43. #define NET_DF_MACH_NUM_UNSOL_DESC           0x000064
  44.  
  45. #define NET_DF_MACH_RMC_XMT_BUF_OFFSET       0x240000
  46.  
  47. #define NET_DF_MACH_ERROR_LOG_OFFSET         0x200000
  48.  
  49. #define NET_DF_MACH_ERR_INTERNAL_OFFSET      0x000000
  50. #define NET_DF_MACH_ERR_EXTERNAL_OFFSET      0x000004
  51. #define NET_DF_MACH_ERR_EVENT_OFFSET         0x000050
  52. #define NET_DF_MACH_ERR_CTRLA_OFFSET         0x000052
  53. #define NET_DF_MACH_ERR_CTRLB_OFFSET         0x000056
  54. #define NET_DF_MACH_ERR_STATUS_OFFSET        0x000058
  55.  
  56. #endif
  57.  
  58.